home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Inside Mac Games Volume 5 #3
/
IMG 46 Vol 5-3.iso
/
More Goodies
/
More For Your Game
/
Realmz
/
Character Master Source
/
Nemesis Framework
/
Headers
/
nemesis misc utilities.h
< prev
next >
Wrap
Text File
|
1996-07-03
|
689b
|
26 lines
//•••••••••••••••••••••••••••
//• Written by David Wagner •
//• ----------------------- •
//• Created: 1 Jun 1996 •
//•••••••••••••••••••••••••••
#ifndef _NEMESISMISCUTILITIES_ // Check to see if it is already included
#define _NEMESISMISCUTILITIES_
enum
{
kControlKeyDown = 28L,
kOptionKeyDown = 29L
};
Boolean NemesisIsTrapAvailable( int trapNum );
Boolean NemesisWithinLimits( long, long, long );
GDHandle NemesisGetRectsDevice( Rect );
int NemesisMainDeviceDepth();
Boolean NemesisSetDimmedColour( Rect, RGBColor & );
void NemesisRestoreDimmedColour( RGBColor );
Boolean NemesisOptionKeyDown();
Boolean NemesisControlKeyDown();
void NemesisPlaySound( int );
#endif